home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / star-1_0.tar / t26.star < prev    next >
Text File  |  1991-03-22  |  223b  |  30 lines

  1. ; STAR DOBLOCK and line numbering test
  2.  
  3.  
  4.     macro    foo arg
  5.       data.a $arg
  6.     endmacro
  7.  
  8.  
  9.     RPL
  10.       1
  11.       2
  12.       3
  13.     ENDRPL
  14.  
  15.     RPL
  16.       4
  17.       5
  18.       6
  19.     ENDRPL
  20.  
  21.     data.a    7
  22.     data.a    8
  23.     data.a    9
  24.     data.a    x'a
  25.     data.a    x'b
  26.  
  27.     foo    x'c
  28.     foo    x'd
  29.     foo    x'e
  30.